不工作,版本問題?
impl=document.implementation doc=impl.createHTMLDocument() doc.open()
document.open() document.write("<h1>hello</h1>")
HTMLstring="<p style='color:red'>hello </p>" newwindow=window.open(); newdocument=newwindow.document; newdocument.write(HTMLstring); //newdocument.close();
nlist = document.links newwindow=window.open(); newdocument=newwindow.document; for (var i=0;i<nlist.length;i++) { newdocument.write(nlist[i].outerHTML) }